home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_055 / vsprites / vsprite.h < prev   
C/C++ Source or Header  |  1992-05-06  |  1KB  |  39 lines

  1. /****************************************************************************
  2.  *          S  T  A  N  D  A  R  D    I  N  C  L  U  D  E  S                *
  3.  ****************************************************************************/
  4.  
  5. #include "exec/types.h"
  6. #include "exec/memory.h"
  7. #include "hardware/custom.h"
  8. #include "hardware/dmabits.h"
  9. #include "graphics/gfxbase.h"
  10. #include "graphics/display.h"
  11. #include "graphics/gfxmacros.h"
  12. #include "graphics/text.h"
  13. #include "graphics/gels.h"
  14. #include "intuition/intuition.h"
  15. #include "libraries/diskfont.h"
  16. #include "libraries/dos.h"
  17. #include "workbench/workbench.h"
  18. #include "workbench/startup.h"
  19.  
  20. /* color definitions (workbench default) */
  21. #define BLUE    0
  22. #define WHITE   1
  23. #define BLACK   2
  24. #define RED     3
  25.  
  26. /* menu definitions */
  27. #define PROJ    0
  28. #define GEN     1
  29. #define MODE    2
  30. #define FONT    3
  31. #define TTEXT   4
  32.  
  33. #define SLOW    200000
  34. #define MEDIUM  100000
  35. #define FAST     10000
  36.  
  37. #define HDIGIT(x) ((char)((x)/10+48))
  38. #define LDIGIT(x) ((char)((x)%10+48))
  39.